home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / proftpd_pre10.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  78 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(10464);
  11.  script_bugtraq_id(2242);
  12.  script_version ("$Revision: 1.11 $");
  13.  script_cve_id("CVE-1999-0368");
  14.  
  15.  name["english"] = "proftpd 1.2.0preN check";
  16.  name["francais"] = "proftpd 1.2.0preN";
  17.  
  18.  script_name(english:name["english"],
  19.              francais:name["francais"]);
  20.              
  21.  desc["english"] = "
  22. The remote ProFTPd server is running a 1.2.0preN 
  23. version.
  24.  
  25. All the 1.2.0preN versions contain several security
  26. flaws that allow an attacker to execute arbitrary code
  27. on this host.
  28.  
  29. Solution : Upgrade to a fixed FTP server - http://www.proftpd.net
  30. Risk factor : High";
  31.                  
  32.                  
  33. desc["francais"] = "
  34. Le serveur ProFTPd distant fait tourner une version 1.2.0preN.
  35.  
  36. Toute la sΘrie des 1.2.0pre-quelquechose contient plusieurs
  37. problΦmes de sΘcuritΘs permettant α un pirate d'executer
  38. du code arbitraire sur ce systΦme.
  39.  
  40. Solution : mettez proftpd α jour en version 1.2.0rc-quelquechose
  41.           (http://www.proftpd.net)
  42. Facteur de risque : ElevΘ";
  43.                      
  44.  script_description(english:desc["english"],
  45.                     francais:desc["francais"]);
  46.                     
  47.  
  48.  script_summary(english:"Checks if the version of the remote proftpd",
  49.                 francais:"DΘtermine la version du proftpd distant");
  50.  script_category(ACT_ATTACK);
  51.  script_family(english:"FTP", francais:"FTP");
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  55.                   francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  56.                   
  57.  script_dependencie("find_service.nes", "ftp_anonymous.nasl");
  58.  script_require_ports("Services/ftp", 21);
  59.  exit(0);
  60. }
  61.  
  62. #
  63. # The script code starts here : 
  64. #
  65.  
  66.  
  67.  
  68. include("ftp_func.inc");
  69.  
  70. port = get_kb_item("Services/ftp");
  71. if(!port)port = 21;
  72.  
  73. banner = get_ftp_banner(port:port);
  74.  
  75. if(egrep(pattern:"^220 ProFTPD 1\.2\.0pre.*", string:banner))security_hole(port);
  76.  
  77.